From: Robert J. Chassell Date: Tue, 30 Jan 2007 12:56:27 +0000 (+0000) Subject: (else): Rephrase message of first if-then-else example so it is right X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~2534 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=0fe17f5dacb6b5698cbf0b13a16ac815e2d1293f;p=emacs.git (else): Rephrase message of first if-then-else example so it is right both in itself and in the "true" case of the expression, which asks whether 4 is greater than 5. --- diff --git a/lispintro/emacs-lisp-intro.texi b/lispintro/emacs-lisp-intro.texi index 6e125989446..0318ac5d361 100644 --- a/lispintro/emacs-lisp-intro.texi +++ b/lispintro/emacs-lisp-intro.texi @@ -4112,9 +4112,9 @@ is not greater than 5!} when you evaluate it in the usual way: @smallexample @group -(if (> 4 5) ; @r{if-part} - (message "5 is greater than 4!") ; @r{then-part} - (message "4 is not greater than 5!")) ; @r{else-part} +(if (> 4 5) ; @r{if-part} + (message "4 falsely greater than 5!") ; @r{then-part} + (message "4 is not greater than 5!")) ; @r{else-part} @end group @end smallexample